home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / account_help.nasl < prev    next >
Text File  |  2005-03-31  |  1KB  |  44 lines

  1. # This script was written by Michel Arboi
  2.  
  3. account = "help";
  4.  
  5. if(description)
  6. {
  7.  script_id(17575);
  8.  script_version ("$Revision: 1.1 $");
  9.  script_bugtraq_id(247);
  10.  
  11.  script_name(english:string("Unpassworded ", account, " account"));
  12.          
  13.  
  14.  script_description(english:string("
  15. The account '", account, "' has no password set. 
  16. An attacker may use it to gain further privileges on this system
  17.  
  18. Risk factor : High
  19. Solution : Set a password for this account or disable it"));
  20.          
  21. script_summary(english:"Logs into the remote host",
  22.            francais:"Translate");
  23.  
  24.  script_category(ACT_GATHER_INFO);
  25.  
  26.  script_family(english:"Default Unix Accounts");
  27.  
  28.  script_copyright(english:"This script is Copyright (C) 2005 Michel Arboi");
  29.  
  30.  
  31.  script_dependencie("find_service.nes");
  32.  script_require_ports("Services/telnet", 23, "Services/ssh", 22);
  33.  exit(0);
  34. }
  35.  
  36. #
  37. # The script code starts here : 
  38. #
  39. include("ssh_func.inc");
  40. include("default_account.inc");
  41.  
  42. port = check_account(login:account);
  43. if(port)security_hole(port);
  44.